home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / nan_news / toolkit / fttext.h < prev    next >
C/C++ Source or Header  |  1991-06-14  |  1KB  |  59 lines

  1. /*
  2.  * File......: FTTEXT.H
  3.  * Author....: Brice de Ganahl
  4.  * Date......: $Date:   14 Jun 1991 19:55:22  $
  5.  * Revision..: $Revision:   1.1  $
  6.  * Log file..: $Logfile:   E:/nanfor/src/fttext.h_v  $
  7.  * 
  8.  * This is an original work by Brice de Ganahl and is placed in the
  9.  * public domain.
  10.  *
  11.  * Modification history:
  12.  * ---------------------
  13.  *
  14.  * $Log:   E:/nanfor/src/fttext.h_v  $
  15.  * 
  16.  *    Rev 1.1   14 Jun 1991 19:55:22   GLENN
  17.  * Minor edit to file header
  18.  * 
  19.  *    Rev 1.0   01 Apr 1991 01:03:06   GLENN
  20.  * Nanforum Toolkit
  21.  * 
  22.  *
  23.  */
  24.  
  25.  
  26. #include "stdio.h"
  27. #include "share.h"
  28. #include "fcntl.h"
  29.  
  30. #define b_size     1024
  31. #define c_size     4096
  32.  
  33. #ifndef SIZE_T
  34.    #define SIZE_T
  35.    typedef unsigned int size_t;
  36. #endif
  37.  
  38. void pascal ft_fseek( void );
  39. void pascal ft_fuse( void );
  40. void pascal ft_fselect( void );
  41. void pascal ft_fgotop( void );
  42. void pascal ft_frecno( void );
  43. void pascal ft_fgobot( void );
  44. void pascal ft_fskip( void );
  45. void pascal ft_freadln( void );
  46. void pascal ft_flastrec( void );
  47. void pascal ft_feof( void );
  48. void pascal ft_fgoto( void );
  49. long _ft_skip( int recs );
  50.  
  51. extern int  _tclose( int );
  52. extern int  _tcreat( char*, int );
  53. extern int  _terror;
  54. extern long _tlseek( int, long, int );
  55. extern int  _topen( char*, int );
  56. extern int  _tread( int, char*, int );
  57. extern int  _twrite( int, char*, int );
  58. extern int  _tcommit( int );
  59.